Draft Ellipse/ru

Draft Ellipse

Расположение в меню
Черчение -> Эллипс
Верстаки
Draft, Arch
Быстрые клавиши
E L
Представлено в версии
-
См. также
Окружность

Описание

Инструмент Ellipse создает эллипс в текущей work plane, введя две точки, определяя угол прямоугольного прямоугольника, в котором будет располагаться эллипс. Он берет linewidth and color, предварительно установленный на вкладке «Задачи».

A Draft Ellipse can be turned into an elliptical arc by setting its ДанныеFirst Angle and ДанныеLast Angle properties to different values.

Usage

See also: Draft Tray, Draft Snap and Draft Constrain.

Использование

  1. Нажмите кнопку Draft Ellipse или нажмите клавиши C, затем I
  2. Щелкните первую точку на трехмерном изображении или введите coordinate
  3. Нажмите вторую точку на трехмерном представлении или введите coordinate.

Опции

The single character keyboard shortcuts available in the task panel can be changed. See Draft Preferences. The shortcuts mentioned here are the default shortcuts (for version 1.0).

Notes

Preferences

See also: Preferences Editor and Draft Preferences.

Свойства

See also: Property editor.

A Draft Ellipse object is derived from a Part Part2DObject and inherits all its properties. It also has the following additional properties:

Data

Draft

View

Draft

Scripting

See also: Autogenerated API documentation and FreeCAD Scripting Basics.

To create a Draft Ellipse use the make_ellipse method (introduced in version 0.19) of the Draft module. This method replaces the deprecated makeEllipse method.

ellipse = make_ellipse(majradius, minradius, placement=None, face=True, support=None)

Example:

import FreeCAD as App
import Draft

doc = App.newDocument()

ellipse1 = Draft.make_ellipse(3000, 200)
ellipse2 = Draft.make_ellipse(700, 1000)

zaxis = App.Vector(0, 0, 1)
p3 = App.Vector(1000, 1000, 0)
place3 = App.Placement(p3, App.Rotation(zaxis, 90))

ellipse3 = Draft.make_ellipse(700, 1000, placement=place3)

doc.recompute()